home *** CD-ROM | disk | FTP | other *** search
/ The Uninvited Press Kit / THE UNINVITED.iso / pc / program.dxr / Internal_26_Sel_Des_Button.ls < prev    next >
Encoding:
Text File  |  2008-12-30  |  1.2 KB  |  57 lines

  1. global gphotolist, gImNum
  2.  
  3. on mouseWithin me
  4.   cursor(280)
  5.   if gphotolist.count = gImNum then
  6.     sprite(90).member = member("But_Des2")
  7.   else
  8.     sprite(90).member = member("But_Sel2")
  9.   end if
  10. end
  11.  
  12. on mouseLeave me
  13.   cursor(0)
  14.   if gphotolist.count = gImNum then
  15.     sprite(90).member = member("But_DES2")
  16.   else
  17.     sprite(90).member = member("But_Sel2")
  18.   end if
  19. end
  20.  
  21. on mouseDown me
  22.   sound(3).play(member("Click"))
  23. end
  24.  
  25. on mouseUp me
  26.   if gphotolist.count = gImNum then
  27.     gphotolist = []
  28.   else
  29.     gphotolist = []
  30.     gphotolist.add("C01")
  31.     gphotolist.add("C02")
  32.     gphotolist.add("C03")
  33.     gphotolist.add("C04")
  34.     gphotolist.add("C05")
  35.     gphotolist.add("C06")
  36.     gphotolist.add("C07")
  37.     gphotolist.add("C08")
  38.     gphotolist.add("C09")
  39.     gphotolist.add("C10")
  40.     gphotolist.add("C11")
  41.     gphotolist.add("C12")
  42.     gphotolist.add("C13")
  43.     gphotolist.add("C14")
  44.     gphotolist.add("C15")
  45.     gphotolist.add("C16")
  46.     gphotolist.add("C17")
  47.     gphotolist.add("C18")
  48.     gphotolist.add("C19")
  49.     gphotolist.add("C20")
  50.     gphotolist.add("C21")
  51.     gphotolist.add("C22")
  52.     gphotolist.add("C23")
  53.     gphotolist.add("C24")
  54.   end if
  55.   updateStage()
  56. end
  57.